Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | import { NextResponse } from 'next/server' import { getClassroomByCode } from '@/lib/classroom' import { withAuth } from '@/lib/auth/withAuth' /** * GET /api/classrooms/code/[code] * Look up classroom by join code * * Returns: { classroom, teacher } or 404 */ export const GET = withAuth(async (_request, { params }) => { try { const { code } = (await params) as { code: string } const classroom = await getClassroomByCode(code) if (!classroom) { return NextResponse.json({ error: 'Classroom not found' }, { status: 404 }) } return NextResponse.json({ classroom: { id: classroom.id, name: classroom.name, code: classroom.code, createdAt: classroom.createdAt, }, teacher: classroom.teacher ? { id: classroom.teacher.id, name: classroom.teacher.name, } : null, }) } catch (error) { console.error('Failed to lookup classroom:', error) return NextResponse.json({ error: 'Failed to lookup classroom' }, { status: 500 }) } }) |